home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1989 / 05 / make.mak < prev    next >
Text File  |  1989-06-12  |  305b  |  21 lines

  1. .c.obj:
  2.     cl -Zp -AL -FPa -c $*.c
  3.  
  4. .cls.obj:
  5.     scc -g \class\lib -p \include $*.cls
  6.     cl -c -Zp -FPa -AL /Tc$*.cx
  7.  
  8. test2.obj: test2.c
  9.  
  10. test.obj: test.c
  11.  
  12. coop.obj: coop.c
  13.  
  14. oop.obj:  oop.cls
  15.  
  16. test2.exe: test2.obj oop.obj
  17.     link test2+oop,,,class;
  18.  
  19. test.exe: test.obj coop.c
  20.     link test+coop;
  21.